home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ABUSESRC.ZIP / AbuseSrc / abuse / src / test2.c < prev    next >
C/C++ Source or Header  |  1996-04-11  |  138b  |  12 lines

  1. #include "system.h"
  2.  
  3. main()
  4. {
  5. #if BYTE_ORDER==LITTLE_ENDIAN
  6.   printf("Hello little\n");
  7. #else 
  8.   printf("hi big\n");
  9. #endif
  10. }
  11.  
  12.